C# Hello World!

FacebookTwitterLinkedInIt’s has became a tradition to start the first programming language lesson with the famous “Hello World!” program. The program simply prints the string “Hello world” in the output window. To get started, open visual studio, select new, C# Program. using System; namespace myfirstCSharpProgram { class HelloWorld { static void Main(string[] args) { Console.WriteLine(“Hello world!”); … Continue reading C# Hello World!